records

records

Active filters Clear all

No active filters

Filters

Existing Greenway Trails

Attachments

Click to expand Click to collapse

Dataset schema

Click to expand Click to collapse
Trail Name
Greenway name

No description available for this field.

Name (identifier)
name
Type
text
Sample
                       
Segment
Greenway segment location

No description available for this field.

Name (identifier)
segment
Type
text
Sample
                       
Status
Status of the greenway

No description available for this field.

Name (identifier)
status
Type
text
Sample
                       
Length in Miles
               

No description available for this field.

Name (identifier)
length
Type
decimal
Unit
mi
Sample
                       
Segment Width in Feet
Width of trail in feet

No description available for this field.

Name (identifier)
width
Type
decimal
Unit
ft
Sample
                       
Shape.STLength()
Not an on-the-ground measurement, but a calculation on the length of the line drawn in ArcGIS

No description available for this field.

Name (identifier)
shape_stlength
Type
decimal
Unit
ft
Sample
                       
Trail Type
               

No description available for this field.

Name (identifier)
trailtype
Type
text
Sample
                       
Surface Type
Surface of trail

No description available for this field.

Name (identifier)
surftype
Type
text
Sample
                       
Install Date
               

No description available for this field.

Name (identifier)
installdate
Type
date
Sample
                       
Built By
               

No description available for this field.

Name (identifier)
builtby
Type
text
Sample
                       
Owned By
               

No description available for this field.

Name (identifier)
ownedby
Type
text
Sample
                       
Managed By
               

No description available for this field.

Name (identifier)
maintby
Type
text
Sample
                       
Cross Town Corridor
               

No description available for this field.

Name (identifier)
priorcorr
Type
text
Sample
                       
Zone
Parks & Recreation Zone

No description available for this field.

Name (identifier)
pilzone
Type
text
Sample
                       
Horseback Riding Allowed
               

No description available for this field.

Name (identifier)
equestrian
Type
text
Sample
                       
Loop Trail
               

No description available for this field.

Name (identifier)
looptrail
Type
text
Sample
                       
Loop Name
               

No description available for this field.

Name (identifier)
loopname
Type
text
Sample
                       
geo_point_2d
Used to map the centroid

No description available for this field.

Name (identifier)
geo_point_2d
Type
geo point
Sample
                       
geo_shape
Used to draw the map object 

No description available for this field.

Name (identifier)
geo_shape
Type
geo shape
Sample
                       
created_date
               

No description available for this field.

Name (identifier)
created_date
Type
datetime
Sample
                       
last_edited_date
               

No description available for this field.

Name (identifier)
last_edited_date
Type
datetime
Sample
                       
SEGMENTID
               

No description available for this field.

Name (identifier)
segmentid
Type
integer
Sample
                       

JSON Schema

The following JSON object is a standardized description of your dataset's schema. More about JSON schema.

{
  • "title":"greenway-trails",
  • "type":"object",
  • "oneOf":
    [
    • {
      • "$ref":"#/definitions/greenway-trails"
      }
    ]
    ,
  • "definitions":
    {
    • "greenway-trails":
      {
      • "properties":
        {
        • "records":
          {
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/greenway-trails_records"
            }
          }
        }
      }
      ,
    • "geoJSON":
      {
      • "title":"Geo JSON object",
      • "description":"Schema for a Geo JSON object",
      • "type":"object",
      • "required":
        [
        • "type"
        ]
        ,
      • "properties":
        {
        • "crs":
          {
          • "$ref":"#/definitions/crs"
          }
          ,
        • "bbox":
          {
          • "$ref":"#/definitions/bbox"
          }
        }
        ,
      • "oneOf":
        [
        • {
          • "$ref":"#/definitions/geometry"
          }
          ,
        • {
          • "$ref":"#/definitions/geometryCollection"
          }
          ,
        • {
          • "$ref":"#/definitions/feature"
          }
          ,
        • {
          • "$ref":"#/definitions/featureCollection"
          }
        ]
      }
      ,
    • "bbox":
      {
      • "description":"A bounding box as defined by GeoJSON",
      • "type":"array",
      • "items":
        {
        • "type":"number"
        }
      }
      ,
    • "crs":
      {
      • "title":"crs",
      • "description":"a Coordinate Reference System object",
      • "type":
        [
        • "object",
        • "null"
        ]
        ,
      • "required":
        [
        • "type",
        • "properties"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "type":"string"
          }
          ,
        • "properties":
          {
          • "type":"object"
          }
        }
        ,
      • "additionalProperties":false,
      • "oneOf":
        [
        • {
          • "$ref":"#/definitions/namedCrs"
          }
          ,
        • {
          • "$ref":"#/definitions/linkedCrs"
          }
        ]
      }
      ,
    • "namedCrs":
      {
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "name"
            ]
          }
          ,
        • "properties":
          {
          • "required":
            [
            • "name"
            ]
            ,
          • "additionalProperties":false,
          • "properties":
            {
            • "name":
              {
              • "type":"string"
              }
            }
          }
        }
      }
      ,
    • "linkedObject":
      {
      • "type":"object",
      • "required":
        [
        • "href"
        ]
        ,
      • "properties":
        {
        • "href":
          {
          • "type":"string",
          • "format":"uri"
          }
          ,
        • "type":
          {
          • "type":"string",
          • "description":"Suggested values: proj4, ogjwkt, esriwkt"
          }
        }
      }
      ,
    • "linkedCrs":
      {
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "link"
            ]
          }
          ,
        • "properties":
          {
          • "$ref":"#/definitions/linkedObject"
          }
        }
      }
      ,
    • "geometryCollection":
      {
      • "title":"GeometryCollection",
      • "description":"A collection of geometry objects",
      • "required":
        [
        • "geometries"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "GeometryCollection"
            ]
          }
          ,
        • "geometries":
          {
          • "type":"array",
          • "items":
            {
            • "$ref":"http://json-schema.org/geojson/geometry.json#"
            }
          }
        }
      }
      ,
    • "feature":
      {
      • "title":"Feature",
      • "description":"A Geo JSON feature object",
      • "required":
        [
        • "geometry",
        • "properties"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "Feature"
            ]
          }
          ,
        • "geometry":
          {
          • "oneOf":
            [
            • {
              • "type":"null"
              }
              ,
            • {
              • "$ref":"#/definitions/geometry"
              }
            ]
          }
          ,
        • "properties":
          {
          • "type":
            [
            • "object",
            • "null"
            ]
          }
          ,
        • "id":
          {
            }
          }
        }
        ,
      • "featureCollection":
        {
        • "title":"FeatureCollection",
        • "description":"A Geo JSON feature collection",
        • "required":
          [
          • "features"
          ]
          ,
        • "properties":
          {
          • "type":
            {
            • "enum":
              [
              • "FeatureCollection"
              ]
            }
            ,
          • "features":
            {
            • "type":"array",
            • "items":
              {
              • "$ref":"#/definitions/feature"
              }
            }
          }
        }
        ,
      • "geometry":
        {
        • "title":"geometry",
        • "description":"One geometry as defined by GeoJSON",
        • "type":"object",
        • "required":
          [
          • "type",
          • "coordinates"
          ]
          ,
        • "oneOf":
          [
          • {
            • "title":"Point",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "Point"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/position"
                }
              }
            }
            ,
          • {
            • "title":"MultiPoint",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiPoint"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/positionArray"
                }
              }
            }
            ,
          • {
            • "title":"LineString",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "LineString"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/lineString"
                }
              }
            }
            ,
          • {
            • "title":"MultiLineString",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiLineString"
                  ]
                }
                ,
              • "coordinates":
                {
                • "type":"array",
                • "items":
                  {
                  • "$ref":"#/definitions/lineString"
                  }
                }
              }
            }
            ,
          • {
            • "title":"Polygon",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "Polygon"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/polygon"
                }
              }
            }
            ,
          • {
            • "title":"MultiPolygon",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiPolygon"
                  ]
                }
                ,
              • "coordinates":
                {
                • "type":"array",
                • "items":
                  {
                  • "$ref":"#/definitions/polygon"
                  }
                }
              }
            }
          ]
          ,
        • "position":
          {
          • "description":"A single position",
          • "type":"array",
          • "minItems":2,
          • "items":
            [
            • {
              • "type":"number"
              }
              ,
            • {
              • "type":"number"
              }
            ]
            ,
          • "additionalItems":false
          }
          ,
        • "positionArray":
          {
          • "description":"An array of positions",
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/position"
            }
          }
          ,
        • "lineString":
          {
          • "description":"An array of two or more positions",
          • "allOf":
            [
            • {
              • "$ref":"#/definitions/positionArray"
              }
              ,
            • {
              • "minItems":2
              }
            ]
          }
          ,
        • "linearRing":
          {
          • "description":"An array of four positions where the first equals the last",
          • "allOf":
            [
            • {
              • "$ref":"#/definitions/positionArray"
              }
              ,
            • {
              • "minItems":4
              }
            ]
          }
          ,
        • "polygon":
          {
          • "description":"An array of linear rings",
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/linearRing"
            }
          }
        }
        ,
      • "greenway-trails_records":
        {
        • "properties":
          {
          • "fields":
            {
            • "type":"object",
            • "properties":
              {
              • "name":
                {
                • "type":"string",
                • "title":"Trail Name",
                • "description":"Greenway name"
                }
                ,
              • "segment":
                {
                • "type":"string",
                • "title":"Segment",
                • "description":"Greenway segment location"
                }
                ,
              • "status":
                {
                • "type":"string",
                • "title":"Status",
                • "description":"Status of the greenway"
                }
                ,
              • "length":
                {
                • "type":"number",
                • "title":"Length in Miles",
                • "description":"",
                • "unit":"mi"
                }
                ,
              • "width":
                {
                • "type":"number",
                • "title":"Segment Width in Feet",
                • "description":"Width of trail in feet",
                • "unit":"ft"
                }
                ,
              • "shape_stlength":
                {
                • "type":"number",
                • "title":"Shape.STLength()",
                • "description":"Not an on-the-ground measurement, but a calculation on the length of the line drawn in ArcGIS",
                • "unit":"ft"
                }
                ,
              • "trailtype":
                {
                • "type":"string",
                • "title":"Trail Type",
                • "description":""
                }
                ,
              • "surftype":
                {
                • "type":"string",
                • "title":"Surface Type",
                • "description":"Surface of trail"
                }
                ,
              • "installdate":
                {
                • "type":"string",
                • "format":"date",
                • "title":"Install Date",
                • "description":""
                }
                ,
              • "builtby":
                {
                • "type":"string",
                • "title":"Built By",
                • "description":""
                }
                ,
              • "ownedby":
                {
                • "type":"string",
                • "title":"Owned By",
                • "description":""
                }
                ,
              • "maintby":
                {
                • "type":"string",
                • "title":"Managed By",
                • "description":""
                }
                ,
              • "priorcorr":
                {
                • "type":"string",
                • "title":"Cross Town Corridor",
                • "description":""
                }
                ,
              • "pilzone":
                {
                • "type":"string",
                • "title":"Zone",
                • "description":"Parks & Recreation Zone"
                }
                ,
              • "equestrian":
                {
                • "type":"string",
                • "title":"Horseback Riding Allowed",
                • "description":""
                }
                ,
              • "looptrail":
                {
                • "type":"string",
                • "title":"Loop Trail",
                • "description":""
                }
                ,
              • "loopname":
                {
                • "type":"string",
                • "title":"Loop Name",
                • "description":""
                }
                ,
              • "geo_point_2d":
                {
                • "type":"array",
                • "minItems":2,
                • "maxItems":2,
                • "items":
                  {
                  • "type":"number"
                  }
                  ,
                • "title":"geo_point_2d",
                • "description":"Used to map the centroid"
                }
                ,
              • "geo_shape":
                {
                • "type":"object",
                • "oneOf":
                  [
                  • {
                    • "$ref":"#/definitions/geometry"
                    }
                  ]
                  ,
                • "title":"geo_shape",
                • "description":"Used to draw the map object "
                }
                ,
              • "created_date":
                {
                • "type":"string",
                • "format":"date-time",
                • "title":"created_date",
                • "description":""
                }
                ,
              • "last_edited_date":
                {
                • "type":"string",
                • "format":"date-time",
                • "title":"last_edited_date",
                • "description":""
                }
                ,
              • "segmentid":
                {
                • "type":"integer",
                • "title":"SEGMENTID",
                • "description":""
                }
              }
            }
          }
        }
      }
    }

    Similar datasets